From 92c5dc80c84d34d880986e3129966712d6e43454 Mon Sep 17 00:00:00 2001 From: Konstantin Demin Date: Fri, 4 Jul 2025 10:51:40 +0300 Subject: [PATCH] luaposix: adjust with glibc and libcrypt-compat glibc 2.39 has removed libcrypt completely. solution: link against libxcrypt built with glibc compatibility. Signed-off-by: Konstantin Demin --- lang/luaposix/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/luaposix/Makefile b/lang/luaposix/Makefile index fd3d2cd905..c49d2056e1 100644 --- a/lang/luaposix/Makefile +++ b/lang/luaposix/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luaposix PKG_VERSION:=36.3 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_URL:=https://codeload.github.com/$(PKG_NAME)/$(PKG_NAME)/tar.gz/v$(PKG_VERSION)? PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -26,7 +26,7 @@ define Package/luaposix CATEGORY:=Languages TITLE:=POSIX binding for LuaJIT, Lua 5.1, 5.2 and 5.3 URL:=https://github.com/luaposix/luaposix - DEPENDS:=+lua +lua-bit32 + DEPENDS:= +USE_GLIBC:libcrypt-compat +lua +lua-bit32 endef define Package/luaposix/description -- 2.30.2